home *** CD-ROM | disk | FTP | other *** search
/ Cine Live 72 / Cine Live 72.iso / pc / Data / Interface / f35.k < prev    next >
Encoding:
Text File  |  2003-08-04  |  4.5 KB  |  235 lines

  1. module oRoot1 is cBox
  2. with 
  3.     Flags is $00000142; 
  4.     release Editor:
  5.         IOWindow is {$000000E1,$0000002E,$00000267,$000002CC,$00000000,$00000000,$00000000,$00000000};
  6.         LayoutWindow is {$000000A9,$00000047,$0000028F,$000001EF,$00000000,$00000000,$00000064,$00000000};
  7.     end;
  8.     Name is "Root"; 
  9.     Enabled is false; 
  10.     
  11.     Width is 800; Height is 600; 
  12.     
  13.     
  14.     Elements is [
  15.         oMusic2,
  16.         ofond3,
  17.         oScroller4,
  18.         ofilmo_imp6,
  19.         ofilmo_retour7,
  20.         ofilmo_somm8,
  21.         ortf9
  22.     ];
  23.     Events is [
  24.         cOnscreenEvent
  25.         with 
  26.             Commands is [
  27.                 cRunCommand
  28.                 with Flags is $00000004; Target is oMusic2; Rewind is true; end
  29.             ];
  30.         end,
  31.         cKeyboardEvent
  32.         with Value is "+"; 
  33.             Commands is [
  34.                 cSetVolumeCommand
  35.                 with Flags is $00000004; Mode is ExecuteHigher; end
  36.             ];
  37.         end,
  38.         cKeyboardEvent
  39.         with Value is "-"; 
  40.             Commands is [
  41.                 cSetVolumeCommand
  42.                 with Mode is ExecuteLower; end
  43.             ];
  44.         end,
  45.         cKeyboardEvent
  46.         with Flags is $00000004; Value is "m"; 
  47.             Commands is [
  48.                 cRunCommand
  49.                 with Flags is $00000004; Target is oMusic2; Mode is Toggle; Rewind is true; end
  50.             ];
  51.         end
  52.     ];
  53. end;
  54.  
  55. object oMusic2 is cSound
  56. with 
  57.     Flags is $00000150; 
  58.     Name is "Music"; 
  59.     
  60.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  61.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  62.     Looping is true; 
  63.     URL is "../Sons/1.mp3"; 
  64.     
  65. end;
  66.  
  67. object ofond3 is cImage
  68. with 
  69.     Flags is $00000150; 
  70.     Name is "fond"; 
  71.     Enabled is false; 
  72.     AdjustX is AlignToCenter; AdjustY is AlignToMiddle; 
  73.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  74.     
  75.     URL is "../Images/35.jpg"; 
  76.     
  77.     
  78. end;
  79.  
  80. object oScroller4 is cScroller
  81. with 
  82.     Flags is $00000150; 
  83.     Name is "Scroller"; 
  84.     Clipping is true; Cursor is oFingerCursor; 
  85.     X is 510; Y is 104; 
  86.     Width is 256; Height is 438; 
  87.     
  88.     Vertical is oVertical_Macintosh_Color_ScrollBar; 
  89.     Elements is [
  90.         oimage_biographie5
  91.     ];
  92.     Events is [
  93.         cMouseMovedEvent
  94.         with Flags is $00000004; 
  95.             Commands is [
  96.                 cScrollCommand
  97.                 with Flags is $00000004; Target is oTargetSelf; end
  98.             ];
  99.         end
  100.     ];
  101. end;
  102.  
  103. object oimage_biographie5 is cImage
  104. with 
  105.     Flags is $00000154; 
  106.     Name is "image biographie"; 
  107.     
  108.     X is 149; 
  109.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  110.     
  111.     URL is "../Images/n35.jpg"; 
  112.     
  113.     
  114. end;
  115.  
  116. object ofilmo_imp6 is cImage
  117. with 
  118.     Name is "filmo imp"; 
  119.     Shown is false; Cursor is oFingerCursor; 
  120.     X is 475; Y is 573; 
  121.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  122.     
  123.     URL is "../Images/actor%20imprim.jpg"; 
  124.     
  125.     
  126.     Events is [
  127.         cMouseEnterEvent
  128.         with 
  129.             Commands is [
  130.                 cShowCommand
  131.                 with Target is oTargetSelf; end
  132.             ];
  133.         end,
  134.         cMouseLeaveEvent
  135.         with 
  136.             Commands is [
  137.                 cShowCommand
  138.                 with Target is oTargetSelf; Mode is Clear; end
  139.             ];
  140.         end,
  141.         cMouseUpEvent
  142.         with Flag is true; 
  143.             Commands is [
  144.                 cPrintCommand
  145.                 with Target is ortf9; end
  146.             ];
  147.         end
  148.     ];
  149. end;
  150.  
  151. object ofilmo_retour7 is cImage
  152. with 
  153.     Flags is $00000150; 
  154.     Name is "filmo retour"; 
  155.     Shown is false; Cursor is oFingerCursor; 
  156.     X is 321; Y is 573; 
  157.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  158.     
  159.     URL is "../Images/actor%20retour.jpg"; 
  160.     
  161.     
  162.     Events is [
  163.         cMouseEnterEvent
  164.         with Flags is $00000004; 
  165.             Commands is [
  166.                 cShowCommand
  167.                 with Flags is $00000004; Target is oTargetSelf; end
  168.             ];
  169.         end,
  170.         cMouseLeaveEvent
  171.         with Flags is $00000004; 
  172.             Commands is [
  173.                 cShowCommand
  174.                 with Flags is $00000004; Target is oTargetSelf; Mode is Clear; end
  175.             ];
  176.         end,
  177.         cMouseUpEvent
  178.         with Flags is $00000004; Flag is true; 
  179.             Commands is [
  180.                 cRunCommand
  181.                 with Flags is $00000004; Target is oMusic2; Mode is Clear; Rewind is true; end,
  182.                 cBackCommand
  183.                 with Flags is $00000004; end
  184.             ];
  185.         end
  186.     ];
  187. end;
  188.  
  189. object ofilmo_somm8 is cImage
  190. with 
  191.     Name is "filmo somm"; 
  192.     Shown is false; Cursor is oFingerCursor; 
  193.     X is 629; Y is 573; 
  194.     AdjustWidth is GetDataWidth; AdjustHeight is GetDataHeight; 
  195.     
  196.     URL is "../Images/actor%20somm.jpg"; 
  197.     
  198.     
  199.     Events is [
  200.         cMouseEnterEvent
  201.         with 
  202.             Commands is [
  203.                 cShowCommand
  204.                 with Target is oTargetSelf; end
  205.             ];
  206.         end,
  207.         cMouseLeaveEvent
  208.         with 
  209.             Commands is [
  210.                 cShowCommand
  211.                 with Target is oTargetSelf; Mode is Clear; end
  212.             ];
  213.         end,
  214.         cMouseUpEvent
  215.         with Flag is true; 
  216.             Commands is [
  217.                 cBrowseCommand
  218.                 with URL is "sommaire.k"; end
  219.             ];
  220.         end
  221.     ];
  222. end;
  223.  
  224. object ortf9 is cRTFText
  225. with 
  226.     Flags is $00000150; 
  227.     Name is "rtf"; 
  228.     Enabled is false; Shown is false; 
  229.     AdjustX is AlignToLeft; AdjustY is AlignToTop; 
  230.     AdjustWidth is GetLayoutWidth; AdjustHeight is GetDataHeight; 
  231.     
  232.     URL is "../Textes/35.rtf"; 
  233.     
  234.     Antialiased is true; 
  235. end;